home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / jpegvu / readme.txt < prev   
Encoding:
Text File  |  1996-09-17  |  4.0 KB  |  77 lines

  1. JPEG file image display Visual Basic 3 program and Visual Basic 4 (16 bit) program each with source code
  2. ------------------------------------------------------------------------
  3.  
  4. These Visual Basic programs are each a minimum skeleton type of program showing how to use the dibinfo.dll, which is FREEWARE and the main imglib.dll JPEG decoder (this is a powerful 32 bit DLL which can carry out numerous other functions) The imglib.dll is SHAREWARE and the property of SimSoft.
  5. Because of this the imglib.dll is not icluded in JPEGVU2.ZIP and you must download it separately. You also need imglib16.dll. However they are easily obtained in the one zip file over the Internet from:
  6.  
  7. ftp://ftp.netcom.com/pub/si/simsoft/ImgLib/ImgLib12.zip
  8.  or
  9. ftp://ftp.cica.indiana.edu/pub/pc/win3/programr/imglib12.zip
  10.  
  11. or from other sites by searching YAHOO with the keyword JPEG. Make sure you get the 263Kbyte version if you are running Windows 3.x because this version also contains imglib32.dll which you will need.(Not necessary for Windows 95 or NT)
  12.  
  13. Importantly after downloading and unzipping imglib.dll can be usefully used straight away with either the Visual Basic 3 or Visual Basic 4 program so that you can see if it is suitable for your application.
  14.  
  15. Either program or a variant of it can be used to display high quality JPG 24 bit image files in your own application program as you wish. It is very convenient to store bit map images as JPG files rather than BMP files particularly if there are a number of images associated with your application because the memory storage requirements are so much less. You may be able to store your whole program on one floppy disc.
  16.  
  17. Installation Notes
  18. ------------------
  19.  
  20. Copy  dibinfo.dll to c:\windows\system   directory
  21. Copy  imglib.dll to c:\windows\system    directory
  22. Copy  imglib16.dll to c:\windows\system  directory
  23. Copy  imglib32.dll to c:\windows\system  directory (only if running under Windows 3.x)
  24. Copy  ilstub32.exe to c:\windows\system  directory (only if running under Windows 3.x)
  25. Copy  example JPG file kimdog.jpg to c:\vb  directory
  26. Visual Basic 3:
  27. Copy  jpegvb3.mak to c:\vb  directory
  28. Copy  jpegvb3.frm to c:\vb  directory
  29. Copy  jpegvb3.bas to c:\vb  directory
  30. Visual Basic 4:
  31. Copy  jpegvu.vbp to c:\vb  directory
  32. Copy  jpegvu.frm to c:\vb  directory
  33. Copy  jpegvu.bas to c:\vb  directory
  34.  
  35. Run in the normal way and then edit to suit your own requirements. You will see that the program is set up for a simple slide show.
  36.  
  37. The programs came about because I found nothing quite suitable as SHAREWARE or FREEWARE even after spending many many hours on the Internet downloading and unzipping software. The dibinfo.dll program has taken a lot of time and effort (over 8 weeks) to produce partly because of the time taken to understand the formatting and procedures used in Windows for Device Independent Bitmaps (DIBs), Device Dependent Bitmaps (DDBs) and how to display them using Visual Basic.
  38. Very useful reference books on this subject are:
  39.  
  40. "Visual Basic Programmer's Guide to the Windows API" by Daniel Appleman (First class book)
  41.  
  42. "Visual Basic 4.0 Power Tool Kit" by Richard Mansfield and Evagelos Petroutsos
  43.  
  44. "Visual Basic Multimedia Adventurer Set" by Scott Jarol
  45.  
  46.  
  47. For more information from SimSoft contact them at:
  48.  
  49. SimSoft
  50. P.O. Box 4091
  51. Redondo Beach, CA 90278
  52. USA
  53.  
  54. or by e-mail at:
  55. arybicki@netcom.com
  56.  
  57. If anyone has any suggestions or comments contact me by e-mail at:
  58. mtomlinson@plymouth.ac.uk 
  59.  
  60. I only request that you attach a favourite scenic JPG of your locale or other
  61. interesting image.
  62.  
  63. Or contact by post to:
  64. The Satellite Centre
  65. School of Electronic Communication and Electrical Engineering
  66. Faculty of Technology
  67. University of Plymouth
  68. PL4 8AA
  69. UK
  70.  
  71. 17th September 1996
  72.  
  73. Notes:
  74. 1) Upgraded 12th September 1996 to include Borland C V5 runtime library dll (bc500rtl.dll) which was missing from jpegvu.zip and also to include Visual Basic 3 source code version.
  75.  
  76. 2) Dibinfo.dll amended 17th September 1996 so as not to need Borland C V5 runtime library dll (bc500rtl.dll)
  77.